home *** CD-ROM | disk | FTP | other *** search
/ Font Pro 5: Fun Type / Font Pro 5 - Fun Type (Wayzata Technology)(1995).bin / advanced / builder / fp5_cat / fp5cat.ps < prev    next >
Text File  |  1995-12-11  |  2KB  |  51 lines

  1. %!
  2. % PostScript program for distilling and combining multiple PostScript files.
  3. % When embedding font subsets, it is highly recommended you use this technique
  4. % to distill multiple PS files so only one font subset is used for each font.
  5.  
  6. /prun { /mysave save def       % Performs a save before running the PS file
  7.         dup = flush            % Shows name of PS file being run
  8.         RunFile                % Calls built in Distiller procedure
  9.         clear cleardictstack   % Cleans up after PS file
  10.         mysave restore         % Restores save level
  11. } def
  12.  
  13.  
  14. (Macintosh HD:FP5 cat:FP5 intro.ps) prun
  15. (Macintosh HD:FP5 cat:FP5P1.ps) prun
  16. (Macintosh HD:FP5 cat:showpage.ps) prun
  17. (Macintosh HD:FP5 cat:FP5P2.ps) prun
  18. (Macintosh HD:FP5 cat:showpage.ps) prun
  19. (Macintosh HD:FP5 cat:FP5P3.ps) prun
  20. (Macintosh HD:FP5 cat:showpage.ps) prun
  21. (Macintosh HD:FP5 cat:FP5P4.ps) prun
  22. (Macintosh HD:FP5 cat:showpage.ps) prun
  23. (Macintosh HD:FP5 cat:FP5P5.ps) prun
  24. (Macintosh HD:FP5 cat:showpage.ps) prun
  25. (Macintosh HD:FP5 cat:FP5P6.ps) prun
  26. (Macintosh HD:FP5 cat:showpage.ps) prun
  27. (Macintosh HD:FP5 cat:FP5P7.ps) prun
  28. (Macintosh HD:FP5 cat:showpage.ps) prun
  29. (Macintosh HD:FP5 cat:FP5 descriptions.ps) prun
  30.  
  31.  
  32. % INSTRUCTIONS
  33. %
  34. % 1. Locate all PostScript files to be distilled.
  35. %
  36. % 2. Make a copy of this file and give it the name you want to have as the prefix
  37. %    for the resulting file. For example, you could name this file MyBook.ps. 
  38. %
  39. % 3. Include a line for each PostScript file to be run using the pathname syntax
  40. %    appropriate for the platform running Acrobat Distiller. 
  41. %
  42. %       Macintosh pathname syntax:  (Macintosh HD:Folder:File.ps) prun
  43. %       Windows pathname syntax:    (c:\\\\mydir\\\\file.ps) prun
  44. %
  45. %       Note: The syntax for Windows may look strange, but double escaping the
  46. %             backslash character is required when using filenameforall.
  47. %
  48. % 4. Distill the file on the machine running Acrobat Distiller.
  49.  
  50.  
  51.